Constant Property (CCI<T>)
In This Topic
Gets or sets the constant value for the CCI calculation.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(0.015)>
Public Property Constant As System.Double
'Usage
Dim instance As CCI(Of T)
Dim value As System.Double
instance.Constant = value
value = instance.Constant
[System.ComponentModel.DefaultValue(0.015)]
public System.double Constant {get; set;}
public read-write property Constant: System.Double;
System.ComponentModel.DefaultValueAttribute(0.015)
public function get,set Constant : System.double
[System.ComponentModel.DefaultValue(0.015)]
public: __property System.double get_Constant();
public: __property void set_Constant(
System.double value
);
[System.ComponentModel.DefaultValue(0.015)]
public:
property System.double Constant {
System.double get();
void set ( System.double value);
}
See Also